home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / board / UChessSrc.lha / debug8.h < prev    next >
C/C++ Source or Header  |  1992-12-07  |  339b  |  18 lines

  1. #ifdef DEBUG4
  2.   if (debuglevel & 8)
  3.     {
  4.       int j;
  5.  
  6.       for (j = 1; j < 2; j++)
  7.     {
  8.       int idb;
  9.  
  10.       for (idb = TrPnt[j]; idb < TrPnt[j + 1]; idb++)
  11.         {
  12.           algbr (Tree[idb].f, Tree[idb].t, Tree[idb].flags);
  13.           printf ("level 8 %d-->%d %s %d %d\n", j, idb, mvstr[0], Tree[idb].score, Tree[idb].width);
  14.         }
  15.     }
  16.     }
  17. #endif
  18.